home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / forms / main.c < prev    next >
C/C++ Source or Header  |  1992-03-02  |  1KB  |  55 lines

  1. /* 
  2.  * prog.c --
  3.  *
  4.  *    Program to ....
  5.  *
  6.  * Copyright 1992 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/lib/forms/RCS/main.c,v 1.4 92/03/02 15:27:51 bmiller Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20. #include <stdio.h>
  21. #include <option.h>
  22.  
  23. Option optionArray[] = {
  24.     {OPT_TRUE, "f", (char *)&foo, "Describe the -f option"},
  25. };
  26. int numOptions = sizeof(optionArray) / sizeof(Option);
  27.  
  28.  
  29. /*
  30.  *----------------------------------------------------------------------
  31.  *
  32.  * main --
  33.  *
  34.  *    <explain>.
  35.  *
  36.  * Results:
  37.  *    None.
  38.  *
  39.  * Side effects:
  40.  *    None.
  41.  *
  42.  *----------------------------------------------------------------------
  43.  */
  44.  
  45. void
  46. main(argc, argv)
  47.     int argc;
  48.     char *argv[];
  49. {
  50.     argc = Opt_Parse(argc, argv, optionArray, numOptions, 0);
  51.  
  52.     exit(0);
  53. }
  54.  
  55.